'use client';

import { useRegisterGlobalHotkeys } from '@/hooks/useHotkeys';

const RegisterHotkeys = () => {
  useRegisterGlobalHotkeys();

  return null;
};

export default RegisterHotkeys;
